Closed
Bug 1278157
Opened 9 years ago
Closed 9 years ago
Use references for outparams in ns{BMP,ICO}Encoder::ParseOptions.
Categories
(Core :: Graphics: ImageLib, defect)
Core
Graphics: ImageLib
Tracking
()
RESOLVED
FIXED
mozilla50
People
(Reporter: n.nethercote, Assigned: n.nethercote)
References
(Blocks 1 open bug)
Details
(Keywords: coverity, Whiteboard: CID 748787, CID 748788, CID 748789, CID 748790)
Attachments
(1 file)
7.83 KB,
patch
|
tnikkel
:
review+
jcristau
:
approval-mozilla-esr45+
|
Details | Diff | Splinter Review |
ns{BMP,ICO}Encoder::ParseOptions() null check their pointer args and then dereference them anyway. They're never passed null in practice so let's just make them references to avoid the confusion.
![]() |
Assignee | |
Comment 1•9 years ago
|
||
Attachment #8760129 -
Flags: review?(tnikkel)
![]() |
Assignee | |
Updated•9 years ago
|
Assignee: nobody → n.nethercote
Status: NEW → ASSIGNED
Comment 2•9 years ago
|
||
Comment on attachment 8760129 [details] [diff] [review]
Use references for outparams in ns{BMP,ICO}Encoder::ParseOptions
Convert the parameters names to use the leading "a" style, or is there a different guideline for out params like this?
Attachment #8760129 -
Flags: review?(tnikkel) → review+
![]() |
Assignee | |
Comment 3•9 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/be57b55e1b04c8d2508ce7686c370a8700ddd00a
Bug 1278157 - Use references for outparams in ns{BMP,ICO}Encoder::ParseOptions. r=tnikkel.
Comment 4•9 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
status-firefox50:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla50
Comment 5•8 years ago
|
||
Comment on attachment 8760129 [details] [diff] [review]
Use references for outparams in ns{BMP,ICO}Encoder::ParseOptions
[Approval Request Comment]
If this is not a sec:{high,crit} bug, please state case for ESR consideration: need this to uplift bug 1348941 cleanly. I could rewrite most of the patch, but it's less error prone to just uplift this.
User impact if declined: we need bug 1348941
Fix Landed on Version: 50
Risk to taking this patch (and alternatives if risky): not risky, its been landed for almost a year, its in esr52
String or UUID changes made by this patch: none
See https://wiki.mozilla.org/Release_Management/ESR_Landing_Process for more info.
Attachment #8760129 -
Flags: approval-mozilla-esr45?
Comment 6•8 years ago
|
||
Comment on attachment 8760129 [details] [diff] [review]
Use references for outparams in ns{BMP,ICO}Encoder::ParseOptions
let's get this on esr45 as prerequisite for bug 1348941
Attachment #8760129 -
Flags: approval-mozilla-esr45? → approval-mozilla-esr45+
Comment 7•8 years ago
|
||
bugherder uplift |
status-firefox-esr45:
--- → fixed
You need to log in
before you can comment on or make changes to this bug.
Description
•